home *** CD-ROM | disk | FTP | other *** search
/ Leonardo the Inventor / Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso / LEOWINMV / SHARED.DIR / 03107_Script_HYPERTEXT < prev    next >
Text File  |  1996-04-01  |  719b  |  24 lines

  1. -- ----------------------------------------------------------------
  2. -- Handler showAnnotation is used in the bio, works and timeline movies.
  3.  
  4. on showAnnotation annotationName
  5.   global originalFrame
  6.   --  if (originalFrame = empty) then put the frame into originalFrame
  7.   put the frame into originalFrame
  8.   puppetTransition 9, 2, 8, true
  9.   go frame annotationName
  10. end
  11.  
  12. -- ----------------------------------------------------------------
  13. -- Handler hideAnnotation is used in the bio, works and timeline movies.
  14.  
  15. on hideAnnotation
  16.   global originalFrame
  17.   if not (originalFrame = empty) then
  18.     puppetTransition 10, 2, 8, true
  19.     go frame originalFrame
  20.     set originalFrame = empty
  21.   end if
  22. end
  23.  
  24.